home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / apps / math / ols.zoo / miscstri.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-16  |  182 b   |  12 lines

  1. /* Miscellanous string routines */
  2.  
  3. char *
  4. strdup (char *s)
  5. {
  6.   char *tmp;
  7.  
  8.   tmp = (char *) malloc ((1 + strlen (s)) * sizeof (char));
  9.   strcpy (tmp, s);
  10.   return tmp;
  11. }
  12.